home *** CD-ROM | disk | FTP | other *** search
- import java.awt.Container;
- import java.awt.GridLayout;
- import java.awt.Label;
- import java.awt.Panel;
-
- class ImageHelp extends Panel {
- public ImageHelp() {
- ((Container)this).setLayout(new GridLayout(0, 2));
- ((Container)this).add(new Label("Move the images using the arrow keys", 1));
- ((Container)this).add(new Label("Resize the images using the PgUp/PgDn keys", 1));
- ((Container)this).add(new Label("Toggle a red/blue color filter using the Home key", 1));
- ((Container)this).add(new Label("Change the alpha using the shifted PgUp/PgDn keys", 1));
- }
- }
-